home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 27 / PC Gamer IT CD 27.iso / MEDIA / STORE.DXR / Internal_12_install button.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  539 b   |  21 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   set the member of sprite the currentSpriteNum to "install.roll"
  4.   set the text of field "rollover text" to "Click here to install the software."
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(-1)
  9.   set the member of sprite the currentSpriteNum to "install.up"
  10.   set the text of field "rollover text" to EMPTY
  11. end
  12.  
  13. on mouseDown me
  14.   set the member of sprite the currentSpriteNum to "install.down"
  15. end
  16.  
  17. on mouseUp me
  18.   set the member of sprite the currentSpriteNum to "install.up"
  19.   open(the text of field "launchPath")
  20. end
  21.